Welcome![Sign In][Sign Up]
Location:
Search - matlab mse

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[AI-NN-PR遗传算法TDOA解决

Description: 用遗传算法解决通信中的TDOA问题 文件名 program 完成功能 求出在进行account_test次的试验中每一次的最优染色体,并且求出均值MV,和均方误差MSE 文件名 definition_constant( ) 完成功能 对各个常量试验参数进行设定 文件名 main_program 完成功能 完成一次试验的计算 文件名 all_Noise 完成功能 计算TDOA值(由基站所测量的TDOA(受到噪声的干扰)) 文件名 gen_ini_pop_arr 完成功能 产生染色体矩阵pop_arr,矩阵的1,2行为估计的x,y坐标,矩阵的3,4行为0。-using genetic algorithms to solve the communication problems TDOA documents were obtained functional program completed during account_test meeting the test of the optimal every chromosome, and calculated average MV, and the mean square error MSE definition_constant file name () function to complete all regular Experimental parameters set main_program documents were completed functional testing of a complete calculation File Name all_Noise complete functional calculation TDOA value (measured from the base station TDOA (subject to noise interference )) File Name gen_ini_pop_arr have completed functional matrix pop_arr chromosome, the matrix acts estimated 1,2 x, y coordinates, and the matrix acts 3,4 0.
Platform: | Size: 3072 | Author: 田园 | Hits:

[Special Effectsdigitalimage1

Description: 图象的直方图处理及全尺度变换和各种性能指标的计算,如psnr,mse等-image histogram processing and full scale transformation and various performance indicators, such as psnr, mse etc.
Platform: | Size: 177152 | Author: 高颖 | Hits:

[OtherMSE_calculation

Description: 最小二乘算法,最小均方误差等算法的MSE的计算,MATLAB代码-Least-squares algorithm, such as minimum mean square error MSE calculation algorithm, MATLAB code
Platform: | Size: 2048 | Author: liulu_tina | Hits:

[matlabvi2

Description: This program compress and recostruct using wavelets. We can select level of decomposition(here maximum 4 levels are given) of images using selected wavelet. For eg:-wavelets can be haar, db1, db2,dmey............... Decomposition can be viewed in figure. (Please note that select 256X256 image for better result.) Then compression can performed, PERFL2 give compression score. Then reconstruction can be performed. Each decompsition we can choose different threshold values. For each threshold value we can calculate mse,psnr,pq(picture quality), bit ratio etc. To get pq install pqs function . -This program compress and recostruct using wavelets. We can select level of decomposition (here maximum 4 levels are given) of images using selected wavelet.For eg:-wavelets can be haar, db1, db2, dmey ........ ....... Decomposition can be viewed in figure. (Please note that select 256X256 image for better result.) Then compression can performed, PERFL2 give compression score.Then reconstruction can be performed.Each decompsition we can choose different threshold values . For each threshold value we can calculate mse, psnr, pq (picture quality), bit ratio etc. To get pq install pqs function.
Platform: | Size: 3072 | Author: 陈语恬 | Hits:

[matlabMSE

Description: Comparison of the performances of the LS and the MMSE channel estimators for a 64 sub carrier OFDM system based on the parameter of Mean square error
Platform: | Size: 3072 | Author: guoyanpeng | Hits:

[matlabOFDMsubspace

Description: 一个对OFDM信道进行盲估计的子空间算法,具有较好的MSE性能-1 pairs of OFDM blind channel estimation for sub-space algorithm, with better MSE performance
Platform: | Size: 2048 | Author: Laura | Hits:

[matlabclassify

Description: 包含用lms、mse、perceptron准则函数的二类分类器-Includes use of lms, mse, perceptron criterion function of the second-class classifier
Platform: | Size: 1875968 | Author: 黎维娟 | Hits:

[matlabls_mmse_updated

Description: 是用matlab对信道估计得到的估计信道与真实信道的最小均方误差的仿真实现程序-Is used for channel estimation matlab been estimated channel true channel with minimum mean square error of the simulation procedure
Platform: | Size: 4096 | Author: yangying | Hits:

[matlabNLMS

Description: 若不希望用与估计输入信号矢量有关的相关矩阵来加快LMS算法的收敛速度,那么可用变步长方法来缩短其自适应收敛过程,其中一个主要的方法是归一化LMS算法(NLMS算法),变步长 的更新公式可写成 W(n+1)=w(n)+ e(n)x(n) =w(n)+ (3.1) 式中, = e(n)x(n)表示滤波权矢量迭代更新的调整量。为了达到快速收敛的目的,必须合适的选择变步长 的值,一个可能策略是尽可能多地减少瞬时平方误差,即用瞬时平方误差作为均方误差的MSE简单估计,这也是LMS算法的基本思想。 -Want to estimate if the input signal vector and the relevant matrix to speed up the convergence rate of LMS algorithm, then the variable step size method can be used to shorten its adaptive convergence process, one of the main method is normalized LMS algorithm (NLMS algorithm) , variable step-size update formula can be written W (n+ 1) = w (n)+ e (n) x (n) = w (n)+ (3.1) where, = e (n) x (n) the right to express filter update vector iterative adjust the volume. In order to achieve the purpose of fast convergence, we must choose the appropriate value of variable step size, a possible strategy is as much as possible to reduce the instantaneous squared error, which uses the instantaneous squared error as the mean square error MSE of the simple estimate, which is the basic LMS algorithm思想.
Platform: | Size: 3072 | Author: 闫丰 | Hits:

[matlabmse

Description: 采用Matlab编写的最小二乘法,实现对两类的正确分类-Prepared by the use of Matlab least squares method, to realize two types of correct classification
Platform: | Size: 2048 | Author: junrren | Hits:

[Special EffectsRMSE.MSE

Description: 小波去噪指标RMSE和MSE的代码,希望能给大家带来帮助-Wavelet Denoising indicators RMSE and MSE of the code, I hope everyone can help
Platform: | Size: 3072 | Author: 小云 | Hits:

[matlabfsedemo

Description: The file fsedemo.m is Matlab code intended as demonstration software for minimum MSE FSE design calculations. From:http://bard.ece.cornell.edu/
Platform: | Size: 1024 | Author: | Hits:

[Special Effectspsnr_nmse_rms

Description: 通过matlab编写的几个关于PSNR、mse的图像处理的小程序。-Matlab prepared through a few on the PSNR, mse small image-processing procedures.
Platform: | Size: 2048 | Author: 胡国胜 | Hits:

[File OperateMSE_compare

Description: LS MSE CALC ofdm mse scheme
Platform: | Size: 1024 | Author: fahabb | Hits:

[Communication-MobileMSE

Description:
Platform: | Size: 2048 | Author: LeJin | Hits:

[Special Effectsimage_processing_quantize

Description: 图像处理功能:求the MSE/SNR/PSNR and the quantized image- the MSE/SNR/PSNR and the quantized image
Platform: | Size: 1024 | Author: 员晓毅 | Hits:

[Windows DevelopMSE

Description: The calculation of MSE using matlab.just replace the matrix elements
Platform: | Size: 1024 | Author: Crisss | Hits:

[matlabmse

Description: 平均标准偏差,一个计算用的Matlab小程序,希望大家喜欢-The average standard deviation, a calculation using a small Matlab program, I hope everyone likes
Platform: | Size: 28672 | Author: teagee | Hits:

[matlabMSE

Description: 用MATLAB实现功率谱的线性均方估计随着信噪比的变化的改变情况-MATLAB realization of the power spectrum with a linear mean square estimation changes with the change in the situation SNR
Platform: | Size: 13312 | Author: 宁冰 | Hits:
« 12 3 4 5 6 7 8 9 10 »

CodeBus www.codebus.net